home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * ToolboxUtil.h
- *
- * Copyright (c) 1986, 1987 THINK Technologies, Inc.
- * These interfaces are based on information copyrighted
- * by Apple Computer, Inc., 1985, 1986, 1987.
- *
- */
-
- #ifndef _ToolboxUtil_
- #define _ToolboxUtil_
-
- #ifndef _Quickdraw_
- #include "Quickdraw.h"
- #endif
-
- #define sysPatListID 0
-
- enum {
- iBeamCursor = 1,
- crossCursor,
- plusCursor,
- watchCursor
- };
-
- typedef struct
- {
- long hiLong;
- long loLong;
- } Int64Bit ;
-
-
- /* functions returning non-integral values */
- pascal StringHandle NewString();
- pascal StringHandle GetString();
- pascal Handle GetIcon();
- pascal PatHandle GetPattern();
- pascal CursHandle GetCursor();
- pascal PicHandle GetPicture();
- double Fix2X(Fixed);
- double Frac2X(Fract);
-
-
- #endif _ToolboxUtil_